home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo %1
- REM Garth MPEG Player Install Batch File
- if not %1X==X goto installtodir
-
- if not exist %winbootdir%\system\Mmsystem.dll goto nowindir
- echo Copying mpegdll.dll to %winbootdir%\system
- copy mpegdll.dll %winbootdir%\system
- if not exist %winbootdir%\system\mpegdll.dll goto error
- echo All Done.
- goto end
-
- :installtodir
- echo Copying mpegdll.dll to %1
- copy mpegdll.dll %1
- if not exist %1\mpegdll.dll goto error
- echo All Done.
- goto end
-
- :nowindir
- echo You'll have to provide the path to the windows "SYSTEM" directory
- echo ie Install D:\Windows\System
- goto fin
-
- :error
- echo copy failed.
- goto fin
-
- :end
- if not %windir%X==X cls
-
- :fin